Method: Vips::Image#>>
- Defined in:
- lib/vips8/image.rb
permalink #>>(other) ⇒ Image
Integer right shift with an image, constant or array.
790 791 792 793 |
# File 'lib/vips8/image.rb', line 790 def >>(other) other.is_a?(Vips::Image) ? boolean(other, :rshift) : boolean_const(other, :rshift) end |